home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / ViePratique / gnucash / gnucash-2.6.5-setup.exe / {app} / share / aqbanking / imexporters / csv / profiles / amex.conf next >
Text File  |  2014-12-19  |  2KB  |  56 lines

  1.  
  2. char name="amex"
  3. char shortDescr="American Express Card"
  4. char version="5.4.2"
  5. char longDescr="This profile supports the CSV format"
  6. int import="1"
  7. int export="1"
  8.  
  9. char type="csv"
  10. char groupNames="transaction", "transfer", "debitnote", "line"
  11. char dateFormat="YYYY/MM/DD"
  12. int utc="0"
  13.  
  14. # The following vars are used when there is an additional field within a
  15. # record which defines the sign of the amount.
  16. # Some banks use "C" (positive) and "D" (negative) or "Af" (negative) and
  17. # "Bij" (positive)
  18. int usePosNegField="0"
  19. char posNegFieldName="posNeg"
  20. #char positiveValues="Bij", "C"
  21. #char negativeValues="Af", "D"
  22. int defaultIsPositive="0"
  23.  
  24.  
  25. params {
  26.   # if 1 then values are quoted
  27.   quote="1"
  28.   
  29.   # if 1 then a title line will be written containing the names of each
  30.   # column
  31.   title="1"
  32.   
  33.   # special values are "TAB" and "SPACE"
  34.   delimiter=";" 
  35.   
  36.   # this is the group name looked for in the given data to GWEN_CSV_Write
  37.   # if not given then all groups match
  38.   #group="transaction"
  39.   
  40.   # this group contains the definition for each column
  41.   # each variable in this group has its number as name
  42.   # you can use index variables in the names (using square brackets)
  43.   # the value of each of these variables is the name of a variable to be looked
  44.   # up in the data given to GWEN_CSV_Write
  45.   columns {
  46.     1="localName"     # CardholderName
  47.     2="valutadate"    # ProcessingDate
  48.     3="purpose[0]"    # Merchant Category
  49.     4="purpose[1]"    # Subcategory
  50.     5="remoteName[0]" # MerchantNameLocation
  51.     6="value/value"   # Amount
  52.   } # columns
  53.  
  54. } # params
  55.  
  56.